home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 March / PCWorld_2003-03_cd.bin / Software / Topware / sandra / setup.exe / {app} / examples / Script.ini < prev    next >
INI File  |  2002-07-01  |  7KB  |  232 lines

  1. ;;
  2. ;; File: Script.ini - Sample batch-mode report settings example file for SiSoftware Sandra
  3. ;;
  4. ;; Syntax: sandra /r <full path report script>
  5. ;; 
  6. ;; For this example: sandra /r script.ini
  7. ;; Note: Use quotes if the file has spaces in it, e.g. "c:\Program Files\Script.ini"
  8. ;;
  9. ;; Warning: Include the FULL PATH to the script file, e.g. "c:\temp\script.ini" not just
  10. ;;          "script.ini" even if the script file is in Sandra's own directory!
  11. ;;
  12. ;; You can create a script like this one by running the Create a Report Wizard and
  13. ;; specifying "Save these settings in a script file" at step "Report Delivery"
  14. ;; It's easier to specify options this way.
  15.  
  16.  
  17. [General]
  18. ;; General settings
  19.  
  20. ;; Version - 1234 for version 12.34 etc. Required!
  21. Program Version=900
  22.  
  23.  
  24. ;; Type of report:
  25. ;; "save"      - to save to disk in any format
  26. ;; "emailMAPI" - to e-mail it using MAPI
  27. ;; "emailSMTP" - to e-mail it using SMTP
  28. ;; "postNews"  - to post it to a newsgroup using NNTP
  29. ;; "print"     - to print/fax the report
  30. ;; "odbc"      - to insert into any ODBC data source
  31. ;; "ado"       - to insert into any ADO supported database/SQL Server
  32. ;; "upload"    - to upload it to a FTP/HTTP server
  33. ;; "postMSMQ"  - to post to a queue (MSMQ)
  34. Report Type=save
  35.  
  36.  
  37. ;; if save:
  38. ;; Full name & path of report file (comment it out if email)
  39. ;; you can also use fields that will be replaced with their values at runtime
  40. ;; fields:
  41. ;;   $HOST$   - computer/host name
  42. ;;   $DOMAIN$ - domain/workgroup name
  43. ;;   $USER$   - user name
  44. ;;   $DATE$   - date report created
  45. ;;   $TIME$   - time report created
  46. Report File=Report of $HOST$ on $DATE$.txt
  47.  
  48. ;; File Type:
  49. ;; "normal" (TXT)
  50. ;; "hierarchical" (RPT)
  51. ;; "web" (HTML)
  52. ;; "XML" (XML)
  53. ;; "SMS" (DMI/MIF)
  54. Report File Type=normal
  55.  
  56. ;; File Encoding:
  57. ;; specify either ANSI or Unicode
  58. ;; (program will convert as required)
  59. File Encoding Unicode=0
  60.  
  61. ;; Encrypt (CRY) report? "0"-No (default) or "1"-Yes
  62. ;; Do NOT specify with Append!
  63. Encrypt=0
  64. ;; Encryption key string - to encrypt the report with
  65. Encrypt Key=the key string
  66.  
  67. ;; Compress (CAB) report? "0"-No or "1"-Yes (default)
  68. ;; Do NOT specify with Append!
  69. Compress=1
  70.  
  71. ;; Append to report file? "0"-No (default) or "1"-Yes
  72. Append=0
  73.  
  74. ;; If multiple copies of Sandra use the same file for the report, turn this on
  75. ;; to synchronise access to the file (each copy will wait for it to become
  76. ;; available rather than exiting) "0"-Don't (default) or "1"-Do
  77. Wait If File Taken=1
  78.  
  79. ; Set the number of characters per line, between 10 to 200 (default 90)
  80. External Line Size=90
  81.  
  82.  
  83. ;; if email: Address of user(s) to send to, subject, e.g.:
  84. ;Email Send To=Sandra@sisoftware.co.uk
  85. ;Email Send Cc=Info@sisoftware.co.uk
  86. ;Email Send Bcc=Blind@sisoftware.co.uk
  87. ;Email Subject=SiSoftware Sandra System Report
  88. ;; address/account of sender
  89. ;Email Sender=Report@sisoftware.co.uk
  90. ;; SMTP server information
  91. ;Email SMTP Host=post.server.com
  92. ;Email SMTP Port=25
  93. ;; SMTP server authentication
  94. ;Email SMTP SSL Auth=0
  95. ;EMail Login User=user
  96. ;EMail Login Password=post
  97. ;; if you want to encrypt the login, use the following 2 fields instead
  98. ;EMail Login User Encrypted=00000000
  99. ;EMail Login Password Encrypted=00000000
  100.  
  101.  
  102. ;; if post: News server details
  103. ;News NewsGroup=public.test
  104. ;News Host=news.server.com
  105. ;News Port=119
  106. ;; address/account of sender
  107. ;News Sender=Report@sisoftware.co.uk
  108. ;; News server authentication
  109. ;News SSL Auth=0
  110. ;News Login User=user
  111. ;News Login Password=post
  112. ;; if you want to encrypt the login, use the following 2 fields instead
  113. ;News Login User Encrypted=00000000
  114. ;News Login Password Encrypted=00000000
  115.  
  116.  
  117. ;; if print: the printer/device name (verbatim!!!)
  118. ;Printer Name=Canon BJ-20
  119.  
  120.  
  121. ;; if insert into ODBC database: enter the data source details, e.g.:
  122. ;ODBC DSN=SandraReport
  123. ;ODBC UserName=Test
  124. ;ODBC Password=sql
  125. ;; if you want to encrypt the login, use the following 2 fields instead
  126. ;ODBC UserName Encrypted=00000000
  127. ;ODBC Password Encrypted=00000000
  128. ;; 1 if identity/autoincrement is supported (e.g. SQL Server/Access); 0 if not
  129. ;ODBC Identity Support=1
  130. ;; 1 if sequences are supported (e.g. Oracle); 0 if not
  131. ;ODBC Sequence Support=0
  132. ;; 1 if client cursors; 0 if server cursors
  133. ;ODBC Client Cursors=0
  134.  
  135. ;; if insert into ADO database: enter database details, e.g.:
  136. ;; SQLOLEDB (SQL Server); MSDAORA (Oracle); MSDASQL (ODBC); Microsoft.Jet.OLEDB.X.XX (Access)
  137. ;ADO Provider=SQLOLEDB
  138. ;; Database host server
  139. ;ADO Server=LocalHost
  140. ;; SQL Server database; Oracle (schema); ODBC DSN
  141. ;ADO Database=SandraDB
  142. ;; Only useful if using the ADO-to-ODBC bridge. Enter the verbatim name of the ODBC driver
  143. ;ADO Driver=Microsoft Access Driver (*.mdb)
  144. ;; 1 if identity/autoincrement is supported (e.g. SQL Server/Access); 0 if not
  145. ;ADO Identity Support=1
  146. ;; 1 if sequences are supported (e.g. Oracle); 0 if not
  147. ;ADO Sequence Support=0
  148. ;; 1 if client cursors (e.g. Oracle); 0 if server cursors (e.g. SQL Server)
  149. ;ADO Client Cursors=0
  150. ;; 0 for database security (specify username/password); 1 for NT authentication
  151. ;ADO NT Security=0
  152. ;; only if database security specified
  153. ;ADO UserName=Test
  154. ;ADO Password=sql
  155. ;; if you want to encrypt the login, use the following 2 fields instead
  156. ;ADO UserName Encrypted=00000000
  157. ;ADO Password Encrypted=00000000
  158.  
  159.  
  160. ;; if ftp upload: enter the server connection (inc path), e.g.:
  161. ;Upload URL=http://www.sisoftware.co.uk/uploadedreports/
  162. ;Upload URL=ftp://ftp.sisoftware.co.uk/uploadedreports/
  163. ;; 1 if anonymous; 0 specify user/password
  164. ;Upload Anonymous=1
  165. ;Upload User=guest
  166. ;Upload Password=guest_pass
  167. ;; if you want to encrypt the login, use the following 2 fields instead
  168. ;Upload User Encrypted=00000000
  169. ;Upload Password Encrypted=00000000
  170.  
  171.  
  172. ;; if post to queue/MSMQ: enter queue path, e.g.:
  173. ;MSMQ Queue=\\computer\public\SandraReport
  174. ;; 1 if transactional; 0 if not
  175. ;MSMQ Transactional=0
  176. ;; 1 if accessible to all; 0 only to creator
  177. ;;MSMQ Public Access=1
  178. ;; 0 if plain; 1 encrypt message body (not needed if file already encrypted)
  179. ;MSMQ Encrypted=0
  180. ;; 1 to use current user login credentials; 0 specify user/password
  181. ;MSMQ Default Credentials=1
  182. ;MSMQ User=guest
  183. ;MSMQ Password=guest_pass
  184. ;; if you want to encrypt the login, use the following 2 fields instead
  185. ;MSMQ User Encrypted=00000000
  186. ;MSMQ Password Encrypted=00000000
  187.  
  188.  
  189. ;; Enter your comments here - one line only!
  190. Comments=This is a test batch-mode report.
  191.  
  192. ;; Display progress dialog? "0"-No or "1"-Yes (default)
  193. Progress Dialog=1
  194.  
  195. ;; Exit after report is done? "0"-No or "1"-Yes (default)
  196. Exit After Done=1
  197.  
  198.  
  199. [Modules]
  200. ;; Module List "0"-To exclude(default) or "1"-To include module
  201. ;; Use Module-Properties or Help to find out the command-line switch for a
  202. ;; particular module
  203.  
  204. SummaryInfo=1
  205. CPUInfo=1
  206. VideoInfo=1
  207. WinMemInfo=1
  208. OLEInfo=1
  209.  
  210. System.ini=0
  211. Win.ini=0
  212.  
  213. ;; etc.
  214.  
  215. ;; Uncomment this line to include all available modules
  216. ;AllModules=1
  217.  
  218. ;; Uncomment this line to include all information modules
  219. ;InfoModules=1
  220. ;; Uncomment this line to include all benchmarking modules
  221. ;BenchmarkModules=1
  222. ;; Uncomment this line to include all listing modules
  223. ;ListModules=1
  224. ;; Uncomment this line to include all testing modules
  225. ;TestModules=1
  226.  
  227.  
  228. ;; That's it - good luck & good hunting!
  229. ;;
  230. ;; If you have issues or comments, please contact us.
  231. ;;
  232.